home *** CD-ROM | disk | FTP | other *** search
Text File | 1996-05-22 | 668 b | 36 lines | [TEXT/CWIE] |
- // Sprocket Framework header file
- // AEThreads.h
-
-
-
- #ifndef __AETHREADS__
- #define __AETHREADS__
- #pragma once
-
-
- #ifndef __THREADS__
- #include <Threads.h>
- #endif
-
- #ifndef __APPLEEVENTS__
- #include <AppleEvents.h>
- #endif
-
-
- pascal OSErr AEHandleInThread(
- const AppleEvent* event,
- AppleEvent* reply,
- AEEventHandlerUPP handler,
- long handlerRefcon,
- ThreadOptions options,
- Size stacksize);
-
- pascal OSErr AEInstallThreadedEventHandler(
- AEEventClass theAEEventClass,
- AEEventID theAEEventID,
- AEEventHandlerUPP proc,
- long handlerRefcon,
- ThreadOptions options,
- Size stacksize);
-
- #endif // __AETHREADS__